Xbasic

BROWSE.DIALOG Function

Syntax

C browse.dialog(C layoutname [,C windowname [,C filter [,C order [,C queryFlags [,C position_x [,C position_y ]]]]]])

Arguments

layoutname

The name of an existing browse.

windowname

Optional. The title of the browse.

filter

Optional. A character filter expression that evaluates to a logical value and selects records from the table.

order

Optional. Default = record order. A character order expression that sorts selected records.

queryFlags

Optional. Query options. See <TBL>.QUERY_CREATE() .

position_x

Optional. Default = "center". The horizontal position of the window. Possible values are:

"left"
"right"
"center"
"fill"
"pixel_coordinate"
position_y

Optional. Default = "center". The vertical position of the window. Possible values are:

"top"
"bottom"
"center"
"fill"
"pixel_coordinate"

Description

The BROWSE.DIALOG() method loads and displays an existing browse.

Example

browse.dialog("CustomerBrowse")

Limitations

Desktop applications only.

See Also